home *** CD-ROM | disk | FTP | other *** search
- //
- // Fichero: STRINGS.H
- //
- // Versi≤n: 1.0
- // Autor: Antonio M. EstΘvez Lorenzo
- // Prop≤sito: Declaraci≤n de las funciones para STRINGS.ASM
- //
-
- typedef char far *PntStr;
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- char far *NewStr(char far *Str);
- void far StrCpy(char far *Dest, const char far *Orig);
- void far StrMov(char far *Dest, const char far *Orig, int NumChar);
- void far StrUne(char far *Dest, const char far *Str1, const char far *Str2);
- int far StrEqu(const char far *Str1, const char far *Str2);
- void far StrSep(char far *Str1, char far *Str2, char Sep);
-
- #ifdef __cplusplus
- void far SeparaParam(const char far *Org, char far *Par1,
- char far *Par2= 0, char far *Par3= 0);
- #else
- void far SeparaParam(const char far *Org, char far *Par1,
- char far *Par2, char far *Par3);
- #endif
-
- void far IntToSt(char far * Dest, int Num);
- int far StToInt(const char far *Str1, int far *Num);
- int far IntValido(const char far *Str, int far *Num, int Min, int Max);
- int far Mayusculas(char far *Str);
- int far LongStr(const char far *Str);
- void far GetDirStr(char far *Dest);
-
- #ifdef __cplusplus
- }
- #endif